home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / s-tasoli.adb < prev    next >
Text File  |  1994-05-19  |  3KB  |  76 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --            S Y S T E M . T A S K I N G _ S O F T _ L I N K S             --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.4 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. with System.Task_Specific_Data;
  26.  
  27. package body System.Tasking_Soft_Links is
  28.  
  29.    --------------------
  30.    -- Abort_Defer_NT --
  31.    --------------------
  32.  
  33.    procedure Abort_Defer_NT is
  34.    begin
  35.       null;
  36.    end Abort_Defer_NT;
  37.  
  38.    ----------------------
  39.    -- Abort_Undefer_NT --
  40.    ----------------------
  41.  
  42.    procedure Abort_Undefer_NT is
  43.    begin
  44.       null;
  45.    end Abort_Undefer_NT;
  46.  
  47.    ------------------------
  48.    -- Get_TSD_Address_NT --
  49.    ------------------------
  50.  
  51.    function Get_TSD_Address_NT (Dummy : Boolean) return  Address is
  52.    begin
  53.       return System.Task_Specific_Data.Non_Tasking_TSD;
  54.    end Get_TSD_Address_NT;
  55.  
  56.    ------------------
  57.    -- Task_Lock_NT --
  58.    ------------------
  59.  
  60.    procedure Task_Lock_NT is
  61.    begin
  62.       null;
  63.    end Task_Lock_NT;
  64.  
  65.    --------------------
  66.    -- Task_Unlock_NT --
  67.    --------------------
  68.  
  69.    procedure Task_Unlock_NT is
  70.    begin
  71.       null;
  72.    end Task_Unlock_NT;
  73.  
  74.  
  75. end System.Tasking_Soft_Links;
  76.